home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / dejagnu.lha / dejagnu-1.0.1 / dejagnu / config / m68k.gld next >
Text File  |  1993-03-17  |  757b  |  50 lines

  1. OUTPUT_FORMAT(srec)
  2. OUTPUT_ARCH(m68k)
  3. SEARCH_DIR(.)
  4. __DYNAMIC  =  0;
  5.  
  6. /*
  7.  * Setup the memory map of the MVME-135 Board
  8.  * stack grows up towards high memory. The boot
  9.  * monitor & stack uses up the first 16k of ram.
  10.  * The monitor has it's stack at 0x4000, so I left
  11.  * a gap.
  12.  */
  13. MEMORY
  14. {
  15.   monitor : ORIGIN = 0x0000, LENGTH = 16K
  16.   ram     : ORIGIN = 0x5000, LENGTH = 1M
  17. }
  18.  
  19. /*
  20.  * stick everything in ram (of course)
  21.  */
  22. SECTIONS
  23. {
  24.   .text :
  25.   {
  26.     CREATE_OBJECT_SYMBOLS
  27.     *(.text)
  28.     _etext = ALIGN(0x20000);
  29.   } > ram
  30.  
  31.   .data  ALIGN(0x20000) :
  32.   {
  33.     *(.data)
  34.     CONSTRUCTORS
  35.     _edata  =  .;
  36.   } > ram
  37.  
  38.   .bss SIZEOF(.data) + ADDR(.data) :
  39.   {
  40.    __bss_start = . ;
  41.    *(.bss)
  42.    *(COMMON)
  43.    end = . ;
  44.    _end = . ;
  45.    __end = . ;
  46.   } > ram
  47. }
  48.  
  49.  
  50.